home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOpus Plus
/
DOpus Plus.iso
/
Tutorial
/
ARexx Tutorial
/
TuteRexx
/
DOpusGetstring.dopus5
< prev
next >
Wrap
Text File
|
1998-09-29
|
374b
|
15 lines
/* DOpus getstring test */
options results
address 'DOPUS.1'
dopus front
dopus getstring '"Please enter your name" 15 "Jon Potter" Okay|_Cancel'
text = 'The value of DOPUSRC was: 'dopusrc
dopus request '"'text'" OK'
if dopusrc ~= 0 then do
text = "Your name is: "result
dopus request '"'text'" OK'
end
else dopus request '"You cancelled the input" OK'
dopus back
exit